There is one optional parameter that is supported by all sections whose entries are separated into parameters. This is:
The name of a check function that determines whether an entry has to be processed or not. The function must either be a custom function in the [Code] section or a support function.
Besides a single name, you may also use boolean expressions. See Components and Tasks parameters for examples of boolean expressions.
For each check function, may include a comma separated list of parameters that Setup should pass to the check function. Allowed parameter types are String, Integer and Boolean. String parameters may include constants.
There's one support function that may be called from within a parameter list: ExpandConstant.
[Files] Source: "MYPROG.EXE"; DestDir: "{app}"; Check: MyProgCheck Source: "A\MYFILE.TXT"; DestDir: "{app}"; Check: MyDirCheck(ExpandConstant('{app}\A')) Source: "B\MYFILE.TXT"; DestDir: "{app}"; Check: DirExists(ExpandConstant('{app}\B'))
All check functions must have a Boolean return value. If a check function (or the boolean expression) returns True, the entry is processed otherwise it's skipped.
Setup might call each check function several times, even if there's only one entry that uses the check function. If your function performs a lenghty piece of code, you can optimize it by performing the code only once and 'caching' the result in a global variable.
A check function isn't called if Setup already determined the entry it shouldn't be processed.
Here is an example of a [Code] section containing the check functions used above. Function DirExists is a support function and therefore not included in this [Code] section.
[Code] var MyProgChecked: Boolean; MyProgCheckResult: Boolean; function MyProgCheck(): Boolean; begin if not MyProgChecked then begin MyProgCheckResult := MsgBox('Do you want to install MyProg.exe to ' + ExtractFilePath(CurrentFileName) + '?', mbConfirmation, MB_YESNO) = idYes; MyProgChecked := True; end; Result := MyProgCheckResult; end; function MyDirCheck(DirName: String): Boolean; begin Result := DirExists(DirName); end;